home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / zlacpy.z / zlacpy
Encoding:
Text File  |  2002-10-03  |  3.1 KB  |  133 lines

  1.  
  2.  
  3.  
  4. ZZZZLLLLAAAACCCCPPPPYYYY((((3333SSSS))))                                                          ZZZZLLLLAAAACCCCPPPPYYYY((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      ZLACPY - copie all or part of a two-dimensional matrix A to another
  10.      matrix B
  11.  
  12. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  13.      SUBROUTINE ZLACPY( UPLO, M, N, A, LDA, B, LDB )
  14.  
  15.          CHARACTER      UPLO
  16.  
  17.          INTEGER        LDA, LDB, M, N
  18.  
  19.          COMPLEX*16     A( LDA, * ), B( LDB, * )
  20.  
  21. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  22.      These routines are part of the SCSL Scientific Library and can be loaded
  23.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  24.      directs the linker to use the multi-processor version of the library.
  25.  
  26.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  27.      4 bytes (32 bits). Another version of SCSL is available in which integers
  28.      are 8 bytes (64 bits).  This version allows the user access to larger
  29.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  30.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  31.      only one of the two versions; 4-byte integer and 8-byte integer library
  32.      calls cannot be mixed.
  33.  
  34. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  35.      ZLACPY copies all or part of a two-dimensional matrix A to another matrix
  36.      B.
  37.  
  38. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  39.      UPLO    (input) CHARACTER*1
  40.              Specifies the part of the matrix A to be copied to B.  = 'U':
  41.              Upper triangular part
  42.              = 'L':      Lower triangular part
  43.              Otherwise:  All of the matrix A
  44.  
  45.      M       (input) INTEGER
  46.              The number of rows of the matrix A.  M >= 0.
  47.  
  48.      N       (input) INTEGER
  49.              The number of columns of the matrix A.  N >= 0.
  50.  
  51.      A       (input) COMPLEX*16 array, dimension (LDA,N)
  52.              The m by n matrix A.  If UPLO = 'U', only the upper trapezium is
  53.              accessed; if UPLO = 'L', only the lower trapezium is accessed.
  54.  
  55.      LDA     (input) INTEGER
  56.              The leading dimension of the array A.  LDA >= max(1,M).
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. ZZZZLLLLAAAACCCCPPPPYYYY((((3333SSSS))))                                                          ZZZZLLLLAAAACCCCPPPPYYYY((((3333SSSS))))
  71.  
  72.  
  73.  
  74.      B       (output) COMPLEX*16 array, dimension (LDB,N)
  75.              On exit, B = A in the locations specified by UPLO.
  76.  
  77.      LDB     (input) INTEGER
  78.              The leading dimension of the array B.  LDB >= max(1,M).
  79.  
  80. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  81.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  82.  
  83.      This man page is available only online.
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.